home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro',
- 'Host Version': u'8.10'
- }
-
- def Preset_ColorAdjustCurves():
- return {
- 'CurveParams': {
- 'RGB': [(0,0),(30,60),(100,150),(190,220),(255,255)],
- 'Red': [(0,0),(255,255)],
- 'Green': [(0,0),(255,255)],
- 'Blue': [(0,0),(255,255)]
- }
- }
-
- def Do(Environment):
- # ColorAdjustCurves
- App.Do( Environment, 'ColorAdjustCurves', Preset_ColorAdjustCurves())
-
-